home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 October: Mac OS SDK / Dev.CD Oct 97 SDK1.toast / Development Kits (Disc 1) / Apple Shared Library Manager / ASLM Examples / TestTools / Sources / TestAllocLinkedList.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-11-19  |  760 b   |  31 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        TestAllocLinkedList.h
  3.  
  4.     Contains:    Declaration for TTestAllocLinkedList class
  5.  
  6.     Copyright:    © 1991-1994 by Apple Computer, Inc., all rights reserved.
  7.  
  8. */
  9.  
  10. #ifndef __TESTALLOCLINKEDLIST__
  11. #define __TESTALLOCLINKEDLIST__
  12.  
  13. #ifndef __TESTLINKEDLIST__
  14. #include "TestLinkedList.h"
  15. #endif
  16.  
  17. #define kTTestAllocLinkedListID    kTestToolPrefix "TTestAllocLinkedList,1.2"
  18.  
  19. class TTestAllocLinkedList : public TTestLinkedList
  20. {
  21.     public:
  22.                         _CDECL TTestAllocLinkedList();
  23.         virtual            ~_CDECL TTestAllocLinkedList();
  24.  
  25.         virtual void    _CDECL InitTest(BooleanParm verbose, BooleanParm debug, int, char**);
  26.         virtual void    _CDECL RunTestIteration(BooleanParm verbose, BooleanParm debug);
  27.         virtual void    _CDECL EndTest(BooleanParm verbose, BooleanParm debug);
  28. };
  29.  
  30. #endif
  31.